home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_sz / TRANSPOSE < prev    next >
Text File  |  1994-02-21  |  805b  |  30 lines

  1. TRANSPOSE:
  2.  
  3.     The RLaB transpose operator is `''. To create the transpose of
  4.     a MATRIX type:
  5.  
  6.     > m
  7.      m =
  8.      matrix columns 1 thru 3
  9.                1           2           3
  10.                4           5           6
  11.                7           8           9
  12.     > m'
  13.      matrix columns 1 thru 3
  14.                1           4           7
  15.                2           5           8
  16.                3           6           9
  17.  
  18.  
  19.     The transpose produces the complex conjugate transpose of a
  20.     complex object (also known as the Hermitian transpose).
  21.  
  22.     If you need the non-conjugate transpose of a matrix, the try:
  23.  
  24.     > conj( m' );
  25.  
  26.     Or use the element (or array) oriented transpose operator .'
  27.     For real matrices, and strings the effect of .' is the same as
  28.     '. However, for complex matrices, the effect is to produce a
  29.     non-conjugate transpose.
  30.